memory monitoring

All posts tagged memory monitoring by Linux Bash
  • Posted on
    Featured Image
    System administrators and developers often need to monitor the memory usage of individual processes to ensure optimal performance and prevent system resources from being over-utilized. One useful tool for Linux that can assist in this task is ps_mem.py, a Python script that reports memory usage of processes with shared memory divided appropriately. Below, we'll explore how to use this tool effectively by integrating it into routine monitoring tasks. A1: ps_mem.py is a Python script used for measuring memory usage of processes on a Linux system. It provides an accurate representation by allocating shared memory to each process uniquely, giving a clearer picture of memory usage per process. Q2: Where can I find and how do I install ps_mem.
  • Posted on
    Featured Image
    When managing Linux servers or desktops, monitoring system resources such as memory usage is crucial for performance tuning and troubleshooting. One of the practical ways to achieve this is through Bash scripting, which allows you to automate the monitoring tasks and get insights about your system's health. In this guide, we will explore how you can create scripts to monitor memory and other resources, as well as provide operating instructions for the most commonly used Linux package managers: apt, dnf, and zypper. Before we dive into scripting, you need to have some utilities installed on your system. Most Linux distributions come with these tools pre-installed, but it's good to check and install them if they're missing.